VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.FormsProcessing.FormRecognition Namespace / FormFieldTemplateTable<T> Class / DistanceBetweenRows Property
Syntax Exceptions Requirements SeeAlso
In This Topic
    DistanceBetweenRows Property (FormFieldTemplateTable<T>)
    In This Topic
    Gets or sets the ratio of distance between two cell rows to cell height.
    Syntax
    'Declaration
    
    <DescriptionAttribute("The ratio of distance between two cell rows to cell height.")>
    <DefaultValueAttribute(0)>
    Public Property DistanceBetweenRows As Single
    
    
    [Description("The ratio of distance between two cell rows to cell height.")]
    [DefaultValue(0)]
    public float DistanceBetweenRows { get; set; }
    
    
    [Description("The ratio of distance between two cell rows to cell height.")]
    [DefaultValue(0)]
    public: __property float get_DistanceBetweenRows();
    public: __property void set_DistanceBetweenRows(
    float value
    );
    [Description("The ratio of distance between two cell rows to cell height.")]
    [DefaultValue(0)]
    public:
    property float DistanceBetweenRows { float get(); void set(float value); }

    Property Value

    Valid values are 0 and any positive value:
    • 0 - there is no distance between cell rows
    • from 0 to 1 - distance between cell rows is less than cell height
    • 1 - distance between cell rows is equal to cell height
    • greater than 1 - distance between cell rows is greater than cell height

    Default value is 0 (i.e., no distance between rows of cells).
    Exceptions
    ExceptionDescription
    Thrown if value is less than 0.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also